#app{
	width: 100%;
	min-width: 1200px;
	/* max-width: 2000px; */
}
.flexCenter-com {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cut-line-com {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
}

.cut-line-com-4 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
}

a {
    display: block;
    text-decoration: none !important;
    color: #666666;
}

a:hover {
    color: #666666;
}

a:active {
    color: #666666;
}

a:link {
    color: #666666;
}

.bottom-line-com {
    width: 600px;
    height: 0.5px;
    background: #E5E5E5;
    margin: 20px 0 30px;
}

/* common banner */

.common-banner-wrap {
    width: 100%;
    height: 300px;
    background: url('../images/banner.jpg') no-repeat #1577F6;
    background-size: cover;
    background-position: top center;
    color: #ffffff;
    margin-top: 80px;
    padding-top: 60px;
}

.company-banner-wrap {
    background: url('../images/banner-1.jpg') no-repeat #1577F6;
    background-size: cover;
    background-position: top center;
}

.contact-banner-wrap {
    background: url('../images/banner-2.jpg') no-repeat #1577F6;
    background-size: cover;
    background-position: top center;
}

.common-banner-wrap>div:first-child {
    font-size: 64px;
    font-weight: bold;
    width: 1200px;
    margin: 0 auto;
}

.common-banner-wrap>div:last-child {
    font-size: 36px;
    font-weight: 400;
    width: 1200px;
    margin: 0 auto;
}

/* common nav */

.common-nav-wrap {
    width: 1200px;
    margin: 0 auto;
    font-size: 14px;
    color: #999999;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 40px 0;
}

.common-nav-wrap>span {
    margin: 0 10px;
}

.common-nav-wrap>.common-nav-active {
    color: #1577F6;
}

/*  common tab toggle */

.common-tab-toggle-wrap {
    width: 100%;
    height: 80px;
    background: #F0F1F2;
    overflow: hidden;
}

.common-tab-title-wrap {
    width: 1200px;
    height: 80px;
    margin: 0 auto;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.common-tab-title-wrap>a {
    margin-right: 60px;
}

.common-tab-title-wrap>.common-item-active {
    font-weight: 700;
    color:#222222;
}

.common-tab-title-wrap>.common-item-active::after {
    content: '';
    display: block;
    width: 63px;
    height: 3px;
    background: #222222;
    font-weight: 700;
}

.common-tab-content-wrap {
	width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.common-tab-content-wrap>div {
    display: none;
}

.common-tab-content-wrap>.common-content-show {
    display: block;
}

/* article bottom line */

.common-article-bottom-line {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    color: #999999;
    margin: 40px 0 150px 0;
}

.common-article-bottom-line>div:nth-of-type(1), .common-article-bottom-line>div:nth-of-type(3) {
    width: 180px;
    height: 1px;
    background: #E5E5E5;
}

.common-article-bottom-line>div:nth-of-type(2) {
    margin: 0 36px;
}

/* 分页 */

.common-pages-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 40px 0 150px;
}
.total-pages{

}

.prev-page, .next-page {
    display: block;
    width: 100px;
    height: 40px;
    background: #1577F6;
    color: #ffffff !important;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 30px;
    border-radius: 0px;
}
.un-active-page{
    background: #cccccc;
}
.prev-page:hover, .next-page:hover {
    background: #337ab7;
}